From: Michael Neuling Date: Wed, 5 Sep 2012 19:17:47 +0000 (+0000) Subject: powerpc: Pack arch_hw_breakpoint to avoid holes in struct X-Git-Tag: archive/raspbian/4.9.13-1+rpi1~10^2~10229^2~74 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=ab046a937629172d5da2bbf4867d89507280759f;p=linux-4.9.git powerpc: Pack arch_hw_breakpoint to avoid holes in struct No functional change Signed-off-by: Michael Neuling Signed-off-by: Benjamin Herrenschmidt --- diff --git a/arch/powerpc/include/asm/hw_breakpoint.h b/arch/powerpc/include/asm/hw_breakpoint.h index be04330af751..39b323e80c30 100644 --- a/arch/powerpc/include/asm/hw_breakpoint.h +++ b/arch/powerpc/include/asm/hw_breakpoint.h @@ -27,10 +27,10 @@ #ifdef CONFIG_HAVE_HW_BREAKPOINT struct arch_hw_breakpoint { - bool extraneous_interrupt; - u8 len; /* length of the target data symbol */ - int type; unsigned long address; + int type; + u8 len; /* length of the target data symbol */ + bool extraneous_interrupt; }; #include